home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / bbs / sam_v12.exe / WAIT.DOC < prev   
Text File  |  1992-11-27  |  6KB  |  137 lines

  1.    Slickware is Copy(c)right 1989,1992 by Gary M. Raymond, New Orleans, La.
  2.               Slick Answer Machine Program V1.1 by Gary M. Raymond
  3.  
  4.                           Simple <Software> Company
  5.                               HOME of SlickWare
  6.  
  7.                               Gary M. Raymond
  8.                                 P.O.Box 8184
  9.                            New Orleans, La.  70182
  10.                                (504) 288-6550
  11.                             Compuserve 70613,3165
  12.  
  13.    ====================================================================
  14.    WAIT.COM  A event time delay utility
  15.    WAIT.DOC  This file.
  16.  
  17.    To use WAIT, type WAIT plus the number of seconds you wish to delay
  18.    the next event, i.e. WAIT 10 (to delay 10 seconds).
  19.  
  20.    The uses for WAIT will be left to your own imaginative needs. But,
  21.    one simple and effective way to break a looping batch file (for
  22.    example) is to use WAIT. See below.
  23.  
  24.  
  25.    RUNIT.BAT
  26.    -----------
  27.    @ECHO OFF
  28.    :START
  29.    DOITNOW.EXE
  30.    WAIT 10
  31.    GOTO :START
  32.  
  33.    When RUNIT loads, it will first run the DOITNOW application, then
  34.    WAIT 10 seconds and run DOITNOW again. Meanwhile, with fast CPU's
  35.    it is sometimes hard to break a batch with Ctrl C. With WAIT you
  36.    have the advantage. While the wait message is displaying, hit
  37.    Ctrl C. It stays in the keyboard buffer until control is returned
  38.    to the batch. Then the batch stops with a terminate? request.
  39.  
  40.    ====================================================================
  41.  
  42.                            ┌─────────┐
  43.                            │ MEMBER  │   Society of
  44.                            │  ┌──────┴──┐ Independent
  45.                            │  │         │   Shareware
  46.                            └──┤    ■    │     Authors
  47.                               │    ║    │
  48.                               └────╨────┘
  49.     This program is produced by a member of the Society of Independent
  50.     Shareware Authors (SISA). The Society wants to ensure that all
  51.     valid shareware principle actually work for you and SISA members.
  52.     The principle behind shareware distribution is simple; try before
  53.     you buy. Society members agree to license all shareware for a minimum
  54.     of 10 days, free of charge, to first time users as an evaluation period.
  55.     After 10 days, buyers are then obligated to license their copy with
  56.     the Society member. Society members are obligated to provide high
  57.     quality, useful shareware, but, are free to choose whatever marketing
  58.     methods suit their specific needs. SISA sanctioned marketing methods
  59.     include: demonstration versions; providing printed documentation
  60.     after purchase; registration keys that unlock additional features
  61.     not necessary to determine basic usefulness; and, providing bug
  62.     fixes free of charge. Any Shareware author may become a member of
  63.     SISA without cost by simply agreeing to the above conditions and
  64.     displaying, at their option, this logo in their documentation.
  65.    ====================================================================
  66.  
  67.     WARRANTY:
  68.     Software:
  69.     Simple Software warrants that the software contained herein will
  70.     perform in substantial compliance with the documentation
  71.     accompanying the software. If you report, in writing, a significant
  72.     defect to us, and we are unable to correct it within 90 days of the
  73.     date you report the defect, you may return the software and
  74.     accompanying materials, and we will refund the purchase price.
  75.  
  76.     Diskette's and Documentation:
  77.     Simple Software, warrants all diskette's and documentation to be
  78.     free of defects in materials for a period of 30 days from the date
  79.     of purchase. In the event of notification within the warranty period
  80.     of defects in any materials, Simple Software will replace the
  81.     defective diskette or documentation.
  82.  
  83.     Remedies:
  84.     The remedy for breach of the warranty shall be limited to
  85.     replacement and shall not encompass any other damages, including but
  86.     not limited to loss of profit, special, incidental, consequential,
  87.     or similar damages, losses, or claims.
  88.  
  89.     DISCLAIMER:
  90.     Simple Software specifically disclaims all other warranties,
  91.     expressed or implied, including but not limited to, implied
  92.     warranties of merchantability and fitness for a particular purpose
  93.     with respect to defects in the diskette and documentation, and the
  94.     program license granted herein, in particular, and without limiting
  95.     operation of the program license with respect to any particular
  96.     application, use, or purpose.  In no event shall Simple Software be
  97.     liable for any loss of profit or any other commercial damage,
  98.     including but not limited to special, incidental, consequential or
  99.     other damages.
  100.  
  101.     GOVERNING LAW:
  102.     This statement shall be construed, interpreted, and governed by the
  103.     laws of the State of Louisiana.
  104.     ====================================================================
  105.  
  106.    Registering your copy will help continue the competitive advantages
  107.    of providing economical shareware. Upon receipt of your payment I
  108.    will provide a registration code number which will allow you to self
  109.    register and personalize your shareware copy. Upon receipt of your
  110.    code  type SLICK REGISTER and enter your first and last name followed
  111.    by the code number. Code numbers may be issued by voice phone if you
  112.    are willing to accept a collect call, otherwise it will be sent to
  113.    you via first class US mail service.
  114.  
  115.    Yes Gary, I enjoy your program and would like to register and
  116.    obtain the latest version.
  117.  
  118.  
  119.    Name_____________________________________________________________
  120.  
  121.    Mailing Address__________________________________________________
  122.  
  123.    City & State ___________________________________________________
  124.  
  125.    ZIP _____________________________ Phone _________________________
  126.  
  127.    Send $9 + $1 (ship & hand) check or money order to:
  128.  
  129.                               Gary M. Raymond
  130.                                 P.O.Box 8184
  131.                             New Orleans, La. 70182
  132.                                 504-288-6550
  133.                             Compuserve 70613,3165
  134.    ====================================================================
  135.                                      EOF
  136.  
  137.